home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
scheme
/
gjr
/
cmplrtst.lha
/
free.scm
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-03-27
|
286 b
|
30 lines
;;; -*- Scheme -*-
#|
Description:
This code tests references to free variables from compiled code.
Usage:
(go) -> Unbound variable x
(define x 23)
(go) -> 23
(set! x)
(go) -> Unassigned variable x
(set! x 34)
(go) -> 34
|#
(declare (usual-integrations))
(define (go)
x)